home *** CD-ROM | disk | FTP | other *** search
/ Games of Daze / Infomagic - Games of Daze (Summer 1995) (Disc 1 of 2).iso / djgpp / qdeck / help / hcphar < prev    next >
Encoding:
Text File  |  1994-08-11  |  884 b   |  42 lines

  1. #
  2. # QOS Makefile for HC386 v3.x with Pharlap Extender.
  3. #
  4.  
  5. all: helpcall.exe ~\help\example.hlp
  6.  
  7. helpcall.exe: hcphar.tag link.rsp helpcall.obj
  8.     386link @link.rsp
  9.  
  10. helpcall.obj:         helpcall.c
  11.     hc386  helpcall.c   -c -DMSDOS
  12.  
  13. hcphar.tag:
  14.     del *.tag
  15.     del *.obj
  16.     del *.map
  17.     del *.exe
  18.     del *.exe
  19.     del *.rsp
  20.     echo >hcphar.tag
  21.  
  22. link.rsp: hcphar
  23.     echo helpcall          >  link.rsp
  24.     echo -EXE helpcall     >> link.rsp
  25.     echo -LIB sys          >> link.rsp
  26.     echo -LIB hc386        >> link.rsp
  27.     echo -LIB hcsoft       >> link.rsp
  28.     echo -LIB hcna         >> link.rsp
  29.     echo -STACK 30000      >> link.rsp
  30.     echo -MAXDATA 0        >> link.rsp
  31.     echo -DOSORDER         >> link.rsp
  32.     echo -TWOCASE          >> link.rsp
  33.     echo -PACK             >> link.rsp
  34.  
  35. ~\help\example.hlp:
  36.     cd .\example
  37.     helplib @example.rsp
  38.     copy example.hlp ~\help\.
  39.     del example.hlp
  40.     cd ..
  41.  
  42.